*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0 auto;
}

.content-form{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-form h1{
    text-align: center;
    gap: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: #37465D;
}

.container .content-form p{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5rem;
    color: #096734;    
}

.container .enrollment label  {
    color: #37465D;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.content-form form{
    width: 90%;
}

input{
    width: 100%;
    height: 40px;
    border: 1px solid rgba(55, 70, 93, 0.40);
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding-left:10px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.buttom-save button{
    border-radius: 10px;
    background-color: #096734;
    width: 100%;
    height: 40px;
    margin-top: 5px;
    color: #FFF;
    font-size: medium;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.buttom-save button:hover{
    filter: brightness(0.9);
}

.background-image{
    background-color: #F9B233;
    width: 40%;
    height: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image img{
    width: 80%;
    max-width: 550px;
}

.container .content-form form .error{
    margin-top: 10px;
    color: red;
}

@media (max-width: 900px){
    .background-image{
        display: none;
    }

    .content-form{
        width: 100%;
    }
}